home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / opextern.h < prev    next >
Text File  |  1996-04-16  |  4KB  |  104 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* opextern.h */
  20. /* Externally accessible operator declarations */
  21.  
  22. /*
  23.  * Normally, the procedures that implement PostScript operators (named zX
  24.  * where X is the name of the operator, e.g., zadd) are private to the
  25.  * file in which they are defined.  There are, however, a surprising
  26.  * number of these procedures that are used from other files.
  27.  * This file, opextern.h, declares all z* procedures that are
  28.  *    - referenced from outside their defining file, and
  29.  *    - present in *all* configurations of the interpreter.
  30.  * For z* procedures referenced from outside their file but not present
  31.  * in all configurations (e.g., Level 2 operators), the file making the
  32.  * reference must include a local extern.  Not pretty, but c'est la vie.
  33.  */
  34.  
  35. /* Operators exported for the special operator encoding in interp.c. */
  36. int zadd(P1(os_ptr));
  37. int zdef(P1(os_ptr));
  38. int zdup(P1(os_ptr));
  39. int zexch(P1(os_ptr));
  40. int zif(P1(os_ptr));
  41. int zifelse(P1(os_ptr));
  42. int zindex(P1(os_ptr));
  43. int zpop(P1(os_ptr));
  44. int zroll(P1(os_ptr));
  45. int zsub(P1(os_ptr));
  46.  
  47. /* Operators exported for server loop implementations. */
  48. int zflush(P1(os_ptr));
  49. int zflushpage(P1(os_ptr));
  50. int zsave(P1(os_ptr));
  51. int zrestore(P1(os_ptr));
  52.  
  53. /* Operators exported for save/restore. */
  54. int zgsave(P1(os_ptr));
  55. int zgrestore(P1(os_ptr));
  56.  
  57. /* Operators exported for Level 2 pagedevice facilities. */
  58. int zcopy_gstate(P1(os_ptr));
  59. int zcurrentgstate(P1(os_ptr));
  60. int zgrestoreall(P1(os_ptr));
  61. int zgstate(P1(os_ptr));
  62. int zreadonly(P1(os_ptr));
  63. int zsetdevice(P1(os_ptr));
  64. int zsetgstate(P1(os_ptr));
  65.  
  66. /* Operators exported for Level 2 "wrappers". */
  67. int zimage(P1(os_ptr));
  68. int zimagemask(P1(os_ptr));
  69. int zwhere(P1(os_ptr));
  70.  
  71. /* Operators exported for specific-VM operators. */
  72. int zarray(P1(os_ptr));
  73. int zdict(P1(os_ptr));
  74. int zpackedarray(P1(os_ptr));
  75. int zstring(P1(os_ptr));
  76.  
  77. /* Operators exported for user path decoding. */
  78. /* Note that only operators defined in all configurations are declared here. */
  79. int zclosepath(P1(os_ptr));
  80. int zcurveto(P1(os_ptr));
  81. int zlineto(P1(os_ptr));
  82. int zmoveto(P1(os_ptr));
  83. int zrcurveto(P1(os_ptr));
  84. int zrlineto(P1(os_ptr));
  85. int zrmoveto(P1(os_ptr));
  86.  
  87. /* Operators exported for CIE cache loading. */
  88. int zcvx(P1(os_ptr));
  89. int zexec(P1(os_ptr));        /* also for .runexec */
  90. int zfor(P1(os_ptr));
  91.  
  92. /* Odds and ends */
  93. int zbegin(P1(os_ptr));
  94. int zcleartomark(P1(os_ptr));
  95. int zend(P1(os_ptr));
  96. int zclosefile(P1(os_ptr));    /* for runexec_cleanup */
  97. int zsetfont(P1(os_ptr));    /* for cshow_continue */
  98.  
  99. /* Operators exported for special customer needs. */
  100. int zcurrentdevice(P1(os_ptr));
  101. int ztoken(P1(os_ptr));
  102. int ztokenexec(P1(os_ptr));
  103. int zwrite(P1(os_ptr));
  104.